home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
UTIL
/
FILEUTIL
/
UNIXUTIL
/
perl
/
dirs
< prev
next >
Wrap
Text File
|
1993-06-10
|
239b
|
13 lines
# vi:si:ts=4:sw=4
# Implements pushd using a system Variable (DIRSTACK) to store the stack.
die "Usage: dirs\n" unless ($#ARGV == -1);
@dirs = split(' ', $ENV{"DIRSTACK"});
print "Directory stack:\n";
foreach (@dirs)
{
print "$_\n";
}